home *** CD-ROM | disk | FTP | other *** search
/ Sounds Terrific 2 / Sounds Terrific II (1996)(Weird Science)(Disc 2 of 2)[Amiga-PC].iso / hippoplayer / hip-script < prev    next >
AmigaDOS Script File  |  1995-05-10  |  341b  |  18 lines

  1. .key filename/a,tempdir/a,lzx/a
  2. .bra {
  3. .ket }
  4.  
  5. ; *** HippoPlayer LZX extraction script ***
  6.  
  7. failat 21
  8.  
  9. if not exists {tempdir}        ; Create temp dir
  10.  makedir {tempdir}
  11. endif
  12.  
  13. ; Extract archive into the temp dir, rename file in temp dir to virtahepo
  14.  
  15. {lzx} -m -q x "{filename}" {tempdir}/
  16. execute s:spat rename {tempdir}/#? {tempdir}/virtahepo
  17.  
  18.